home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Format 1995 June
/
MacFormat 25.iso
/
Shareware City
/
Developers
/
OutOfPhase1.1 Source
/
OutOfPhase Folder
/
OscillatorListSpecifier.h
< prev
next >
Wrap
Text File
|
1994-12-06
|
1KB
|
37 lines
/* OscillatorListSpecifier.h */
#ifndef Included_OscillatorListSpecifier_h
#define Included_OscillatorListSpecifier_h
/* OscillatorListSpecifier module depends on */
/* MiscInfo.h */
/* Audit */
/* Debug */
/* Definitions */
/* Memory */
/* OscillatorSpecifier */
/* forwards */
struct OscillatorRec;
struct OscillatorListRec;
typedef struct OscillatorListRec OscillatorListRec;
/* create a new array of oscillators */
OscillatorListRec* NewOscillatorListSpecifier(void);
/* dispose of oscillator list */
void DisposeOscillatorListSpecifier(OscillatorListRec* OscList);
/* append a new oscillator */
MyBoolean AppendOscillatorToList(OscillatorListRec* OscList,
struct OscillatorRec* NewOscillator);
/* get one of the oscillators from the list */
struct OscillatorRec* GetOscillatorFromList(OscillatorListRec* OscList, long Index);
/* find out how many oscillators there are in the list */
long GetOscillatorListLength(OscillatorListRec* OscList);
#endif